home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-13 | 415 b | 34 lines | [TEXT/EDIT] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class BAD_LIKE2
- --
- -- From : Antoine GARRIGUES
- --
-
- creation make
-
- feature
-
- attribute: INTEGER
-
- make is
- do
- attribute := A
- end;
-
- a: like B;
-
- b: C
-
- do
- Result := B
- end;
-
- B: like A is
- do
- Result := A
- end;
-
- end -- BAD_LIKE2
-